home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / tafltggr.lha / rexx / TAFileTagger.trans < prev    next >
Text File  |  1995-11-08  |  481b  |  24 lines

  1. /* Launch Script for TAFileTagger
  2.    Written by Juergen A.Lamers on Wuivend Riet +49-(0)-241-573145
  3.    You should only change the Priority, the Path and the Options
  4.    for TAFileTagger, please never decrease the stack !!
  5.  */
  6.  
  7. options results
  8. signal on error
  9.  
  10. systeminfo '8' ; line = result
  11.  
  12. call pragma('stack',50000)
  13. call pragma('priority',2)
  14.  
  15. address command "bbs:bin/TAFileTagger" " CONFIG bbs:Configs/tafiletagger.cfg LINE "||line
  16.  
  17. shutdown
  18. exit $RC
  19.  
  20. error:
  21. shutdown
  22. exit $RC
  23.  
  24.